To create XML file of Database we have to call WriteXml() function of Data Set.
Example
string strConnection = "Server=abc\\SQLEXPRESs;Database=Employee;Trusted_Connection=True";
SqlConnection con = new SqlConnection(strConnection);
//creating new connection to database Employee
con.Open();
//opening connection
SqlDataAdapter da = new SqlDataAdapter("select * from employee", con);
//assigning data to DataAdapter according to the query
DataSet ds = new DataSet();
da.Fill(ds, "Employee");
//filling dataset.
ds.WriteXml("C:\\dataEmployee.xml");
//writing XML file of name ‘dataEmployee.xml’ of database
Anonymous User
20-Mar-2019Thank You for the guidance.
Sushant Mishra
22-Jun-2017It was really helpful to read this post.